home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / ixemul / sdk / man / cat3 / intro.0 < prev    next >
Encoding:
Text File  |  1998-06-15  |  2.7 KB  |  61 lines

  1.  
  2. INTRO(3)                   UNIX Programmer's Manual                   INTRO(3)
  3.  
  4. NNAAMMEE
  5.      iinnttrroo - introduction to the C libraries
  6.  
  7. DDEESSCCRRIIPPTTIIOONN
  8.      This section provides an overview of the C library functions, their error
  9.      returns and other common definitions and concepts.  Most of these func-
  10.      tions are available from the C library, _l_i_b_c. Other libraries, such as
  11.      the math library, _l_i_b_m, must be indicated at compile time with the --ll op-
  12.      tion of the compiler.
  13.  
  14.      The various libraries (followed by the loader flag):
  15.  
  16.      libc(--ll_c)   Standard C library functions.  When using the C compiler
  17.                  cc(1),  it is not necessary to supply the loader flag --ll_c for
  18.                  these functions.  There are several `libraries' or groups of
  19.                  functions included inside of libc: the standard  I/O rou-
  20.                  tines, database routines, bit operators, string operators,
  21.                  character tests and character operators, des encryption rou-
  22.                  tines, storage allocation, time functions, signal handling
  23.                  and more.
  24.  
  25.      libcurses( --ll_c_u_r_s_e_s --ll_t_e_r_m_c_a_p)
  26.                  Terminal independent screen management routines for two di-
  27.                  mensional non-bitmap display terminals.  (See curses(3).)
  28.  
  29.      libcompat(--ll_c_o_m_p_a_t)
  30.                  Functions which are obsolete but are available for compati-
  31.                  bility with 4.3BSD. In particular, a number of system call
  32.                  interfaces provided in previous releases of BSD UNIX have
  33.                  been included for source code compatibility.  Use of these
  34.                  routines should, for the most part, be avoided.  The manual
  35.                  page entry for each compatibility routine indicates the prop-
  36.                  er interface to use.
  37.  
  38.      libl(--ll_l)   The library for lex(1).
  39.  
  40.      libm(--ll_m)   The math library, _l_i_b_m.
  41.  
  42.      libtermcap(--ll_t_e_r_m_c_a_p)
  43.                  The terminal independent operation library package. (See
  44.                  termcap(3).)
  45.  
  46.      liby(--ll_y)   The library for yacc(1).
  47.  
  48. FFIILLEESS
  49.      /usr/lib/libc.a    the C library
  50.      /usr/lib/libm.a    the math library
  51.      /usr/lib/libc_p.a  the C library compiled for profiling
  52.      /usr/lib/libm_p.a  the math library compiled for profiling
  53.  
  54. SSEEEE AALLSSOO
  55.      stdio(3),  math(3),  intro(2),  cc(1),  ld(1),  nm(1)
  56.  
  57. HHIISSTTOORRYY
  58.      An iinnttrroo manual appeared in Version 7 AT&T UNIX.
  59.  
  60. 4th Berkeley Distribution        June 5, 1993                                1
  61.